Method: Vips::Image#>=
- Defined in:
- lib/vips8/image.rb
permalink #>=(other) ⇒ Image
Relational more than or equal to with an image, constant or array.
881 882 883 884 |
# File 'lib/vips8/image.rb', line 881 def >=(other) other.is_a?(Vips::Image) ? relational(other, :moreeq) : relational_const(other, :moreeq) end |